From: Stefan Monnier Date: Fri, 4 May 2001 17:54:18 +0000 (+0000) Subject: (diff-nonexistent-face, diff-font-lock-keywords): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~40471 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a99b14ac5093c0052b3655fc9f919756389276d3;p=emacs.git (diff-nonexistent-face, diff-font-lock-keywords): Typo `nonexistant' -> `nonexistent'. --- diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 894a221539d..f83b5f78d46 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -249,11 +249,11 @@ when editing big diffs)." :group 'diff-mode) (defvar diff-context-face 'diff-context-face) -(defface diff-nonexistant-face +(defface diff-nonexistent-face '((t (:inherit diff-file-header-face))) - "`diff-mode' face used to highlight nonexistant files in recursive diffs." + "`diff-mode' face used to highlight nonexistent files in recursive diffs." :group 'diff-mode) -(defvar diff-nonexistant-face 'diff-nonexistant-face) +(defvar diff-nonexistent-face 'diff-nonexistent-face) (defvar diff-font-lock-keywords '(("^\\(@@ -[0-9,]+ \\+[0-9,]+ @@\\)\\(.*\\)$" ;unified @@ -271,7 +271,7 @@ when editing big diffs)." ("^[+>].*\n" . diff-added-face) ("^[-<].*\n" . diff-removed-face) ("^Index: \\(.+\\).*\n" (0 diff-header-face) (1 diff-index-face prepend)) - ("^Only in .*\n" . diff-nonexistant-face) + ("^Only in .*\n" . diff-nonexistent-face) ("^#.*" . font-lock-string-face) ("^[^-=+*!<>].*\n" . diff-context-face)))